From: Jim Blandy Date: Fri, 28 May 1993 06:55:13 +0000 (+0000) Subject: * Makefile.in (do-install): Correctly detect if ./etc and X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~95855 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=65607c1f5252ab07633ce84030d27de3dff5de7e;p=emacs.git * Makefile.in (do-install): Correctly detect if ./etc and ${srcdir}/etc are the same. --- diff --git a/Makefile.in b/Makefile.in index 8ef2d188960..65f4ccc6e62 100644 --- a/Makefile.in +++ b/Makefile.in @@ -344,7 +344,7 @@ do-install: mkdir rm -f $${subdir}/*~ ; \ done) ; \ done - -[ `(cd etc; /bin/pwd)` != `(cd ${etcdir}; /bin/pwd)` ] \ + -[ `(cd etc; /bin/pwd)` != `(cd ${srcdir}/etc; /bin/pwd)` ] \ && (echo "Copying ./etc..." ; \ (cd ./etc; tar cf - . )|(cd ${etcdir}; umask 0; tar xvf - ); \ for subdir in `find ${etcdir} -type d ! -name RCS -print` ; do \